Module-level declarations

Types

Link copied to clipboard
entity content
Link copied to clipboard
Link copied to clipboard
entity dialogue
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard

Functions

Link copied to clipboard
function _check_rate(account_id: byte_array)
Link copied to clipboard
function _delete_dialogue_and_content(source: text, content_name: text)
Link copied to clipboard
function _update_timestamp(source: text)
Link copied to clipboard
function _upsert_content(name: text, value: text): content
Link copied to clipboard
function _upsert_dialogue(source: text, content_name: text, content_value: text)
Link copied to clipboard
function _upsert_general_translation(content_name: text, content_value: text)
Link copied to clipboard
function require_content(name: text): content
Link copied to clipboard
function require_dialogue(source: text, content: content): dialogue

Queries

Link copied to clipboard
@mount("localization.get_all_dialogues") query get_all_dialogues(cursor: page_cursor): dialogues_grouped_by_source_dto
Link copied to clipboard
@mount("localization.get_all_general_translations") query get_all_general_translations(cursor: page_cursor): general_translations_dto
Link copied to clipboard
@mount("localization.get_dialogues") query get_dialogues(source: text, cursor: page_cursor): dialogues_grouped_by_source_dto
Link copied to clipboard
@mount("localization.get_general_translation") query get_general_translation(name: text): general_translation_dto?
Link copied to clipboard
@mount("localization.get_last_updated_for_sources") query get_last_updated_for_sources(sources: list<text>): list<last_upsert_dto>

Operations

Link copied to clipboard
@mount("localization.batch_upsert_dialogues") operation batch_upsert_dialogues(source_objects: list<dialogues_per_source_dto>)
Link copied to clipboard
@mount("localization.batch_upsert_general_translation") operation batch_upsert_general_translation(translations: list<content_dto>)
Link copied to clipboard
@mount("localization.delete_dialogue") operation delete_dialogue(source: text, content_name: text)
Link copied to clipboard
@mount("localization.delete_general_translation") operation delete_general_translation(name: text)
Link copied to clipboard
@mount("localization.delete_npc_dialogue") operation delete_npc_dialogue(source: text, content_name: text, account_id: byte_array, auth_descriptor_id: byte_array)
Link copied to clipboard
@mount("localization.upsert_general_translation") operation upsert_general_translation(content_name: text, content_value: text)
Link copied to clipboard
@mount("localization.upsert_npc_dialogue") operation upsert_npc_dialogue(source: text, content_name: text, content_value: text, account_id: byte_array, auth_descriptor_id: byte_array)